+2008-07-03 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 538547 – Update doc-shooter in gtk documentation
+
+ * docs/tools/Makefile.am:
+ * docs/tools/folder.png:
+ * docs/tools/gnome.png: New images
+
+ * docs/tools/widgets.c: Use the new images.
+ Patch by Baptiste Mille-Mathias.
+
2008-07-03 Michael Natterer <mitch@imendio.com>
* gtk/gtkscalebutton.c: remove "_from_bindings" suffix from the
+2008-07-03 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/images/iconview.png: Update
+
2008-06-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.13.3 ===
widgets.h
clean-local:
- for file in gnome-foot.png *.png; do \
+ for file in *.png; do \
case "$$file" in \
- gnome-foot.png|gnome-gmush.png) ;; \
+ folder.png|gnome.png) ;; \
*) rm -f $$file ;; \
esac ; \
done
gtk_frame_set_shadow_type (GTK_FRAME (widget), GTK_SHADOW_IN);
list_store = gtk_list_store_new (2, G_TYPE_STRING, GDK_TYPE_PIXBUF);
gtk_list_store_append (list_store, &iter);
- pixbuf = gdk_pixbuf_new_from_file ("gnome-gmush.png", NULL);
+ pixbuf = gdk_pixbuf_new_from_file ("folder.png", NULL);
gtk_list_store_set (list_store, &iter, 0, "One", 1, pixbuf, -1);
gtk_list_store_append (list_store, &iter);
- pixbuf = gdk_pixbuf_new_from_file ("gnome-foot.png", NULL);
+ pixbuf = gdk_pixbuf_new_from_file ("gnome.png", NULL);
gtk_list_store_set (list_store, &iter, 0, "Two", 1, pixbuf, -1);
icon_view = gtk_icon_view_new();